home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1997 #4
/
Amiga Plus CD - 1997 - No. 04.iso
/
system
/
delitracker_ii
/
arexx
/
dt_append.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-04-15
|
212b
|
19 lines
/* DeliTracker - toggles append */
address 'DELITRACKER'
options results
status G app
if result == "no" then do
Append yes
say "Append is now on..."
end
else do
Append no
say "Append is now off..."
end